From: Eli Zaretskii Date: Sat, 13 Mar 2004 13:04:41 +0000 (+0000) Subject: (woman-preserve-ascii): Default value changed to t and X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~23691 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6fb4c7663b31c6a9cd559938f62b675aa5a811a8;p=emacs.git (woman-preserve-ascii): Default value changed to t and doc string revised. --- diff --git a/lisp/woman.el b/lisp/woman.el index cce6d4ca5e1..ed04ae4c83f 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -832,10 +832,15 @@ the buffer, which may aid debugging." :type 'boolean :group 'woman-formatting) -(defcustom woman-preserve-ascii nil - "*If non-nil then preserve ASCII characters in the WoMan buffer. -Otherwise, non-ASCII characters (that display as ASCII) may remain. -This is irrelevant unless the buffer is to be saved to a file." +(defcustom woman-preserve-ascii t + "*If non-nil, preserve ASCII characters in the WoMan buffer. +Otherwise, to save time, some backslashes and spaces may be +represented differently (as the values of the variables +`woman-escaped-escape-char' and `woman-unpadded-space-char' +respectively) so that the buffer content is strictly wrong even though +it should display correctly. This should be irrelevant unless the +buffer text is searched, copied or saved to a file." + ;; This option should probably be removed! :type 'boolean :group 'woman-formatting)